home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / wais / ui / wais.h < prev    next >
C/C++ Source or Header  |  1995-05-09  |  1KB  |  53 lines

  1. /* WIDE AREA INFORMATION SERVER SOFTWARE:
  2.    No guarantees or restrictions.  See the readme file for the full standard
  3.    disclaimer.
  4.  
  5.    This is part of the shell user-interface for the WAIS software.  Do with it
  6.    as you please.
  7.  
  8.    jonathan@Think.COM
  9.  
  10.  * $Log:    wais.h,v $
  11.  * Revision 1.9  92/04/30  12:23:55  jonathan
  12.  * Removed redundant includes.
  13.  * 
  14.  * Revision 1.8  92/03/17  14:31:44  jonathan
  15.  * Generally cleaned up.
  16.  * 
  17.  * Revision 1.7  92/03/06  14:51:43  jonathan
  18.  * Added sdir and cdir for source loading.
  19.  * 
  20.  * Revision 1.6  92/02/15  19:50:24  jonathan
  21.  * Removed old cruft.  Added $Log for RCS
  22.  * 
  23. */
  24.  
  25. #ifndef _H_WAIS
  26. #define _H_WAIS
  27.  
  28. /* usefull definitions */
  29.  
  30. #define STRINGSIZE    256
  31.  
  32. #include <ctype.h>
  33. #include <sys/types.h>
  34. #include <sys/stat.h>
  35.  
  36. /* from the IR directory */
  37.  
  38. #include <cutil.h>
  39. #include <irdirent.h>
  40. #include <ui.h>
  41. #include <irfileio.h>
  42. #include <sockets.h>
  43.  
  44. /* for this application */
  45.  
  46. #include "list.h"
  47. #include "source.h"
  48. #include "document.h"
  49. #include "question.h"
  50. #include "wais-ui.h"
  51.  
  52. #endif
  53.